- /* scfcexp.cpp by K.Tsuru */
- // function ID = 9107
- /*************************************************
- SComplex class
- Let z = x+i*y.
- It returns exp(x+i*y) = exp(x)*{cos(y)+i*sin(y)}.
- **************************************************/
- #ifndef SN_H
- #include "sn.h"
- #endif
- SComplex Cexp(const SComplex& z){
- SDouble r = Exp(z.Real());
- return Cpolar(r, z.Imag());
- }
scfcexp.cpp : last modifiled at 2015/07/26 15:33:41(380 bytes)
created at 2017/10/06 15:21:28
The creation time of this html file is 2017/10/06 15:27:08 (Fri Oct 06 15:27:08 2017).